home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Programming / powerd / lib / powerd.lha / powerd_ppc / Max.ass < prev    next >
Encoding:
Text File  |  1980-10-04  |  145 b   |  14 lines

  1.  
  2. # Max(r3:LONG,r4:LONG)(r3:LONG)
  3.  
  4.     .text
  5.     .global    _Max
  6.  
  7. _Max:    cmpw    r4,r3
  8.     ble    done
  9.     mr    r4,r3
  10. done:    blr
  11.  
  12.     .type    _Max,@function
  13.     .size    _Max,$-_Max
  14.